home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Mount Compressed Drive.xpl < prev    next >
Text File  |  2001-05-04  |  2KB  |  59 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="3"
  4. "UIPATH"="System\File System\Windows 9x/ME Options\Compression"
  5. "NAME"="Auto Mount Compressed Drives"
  6. "VERSION"="1.06"
  7. "OSVERSION"="10101"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Do not use compressed drives"
  10. "TEXT 2"="Mount manually"
  11. "TEXT 3"="Mount automatically"
  12. "DESCRIPTION 1"="Automatically mount compressed drive not present when system started, e.g. compressed floppy or zip disk."
  13. "COMMENT 1"=" "
  14. "COMMENT 2"="Run Win98/98SE on 250MB HD --> use Drvspace.exe"
  15. "AUTHOR"="Ojatex@aol.com"
  16. "CONTACTURL"="http://members.aol.com/ojatex/"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18.  
  19. 'Declaration of some constants
  20. sP="HKLM\System\CurrentControlSet\Control\FileSystem\AutoMountDrives"
  21.  
  22. 'Called when the Plugin is started
  23. SUB Plugin_Initialize
  24.     i=RegReadValue(sP)
  25.     if IsEmpty(i) then
  26.        SetUIElement 1,true
  27.     else
  28.         if i="" then SetUIElement 1,true
  29.        if i="0" then SetUIElement 2,true
  30.        if i="1" then SetUIElement 3,true
  31.     end if
  32. END SUB
  33.  
  34. 'Called when the Plugin should validate the Data the user has entered
  35. SUB Plugin_CheckData(ElementIndex)
  36. END SUB
  37.  
  38. 'Called when the Plugin should apply the changes
  39. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  40.  if GetUIElement(1)=true then
  41.     s=""
  42.  else
  43.     if GetUIElement(2)=true then
  44.        s="0"
  45.     else
  46.        s="1"
  47.     end if
  48.  end if
  49.  
  50.  Call RegWriteValue(sP,s,1)
  51.  
  52.  
  53. END SUB
  54.  
  55. 'Called when the Plugin is about to be removed from memory
  56. SUB Plugin_Terminate
  57.  
  58. END SUB
  59.